home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / PSPad editor 4.5.4 build 2356 beta / pspad454inst_en.exe / {app} / Context / ASP.DEF < prev    next >
Text File  |  2003-08-30  |  11KB  |  194 lines

  1. ; PSPad clip definition file for VBScript
  2. ; author: ing. Jan Fiala pspad@wo.cz
  3. ; last revision: 14.8.2001
  4. ;
  5. [Add | Adds a key and item pair to a Dictionary object]
  6. Add |key, item
  7. [Add | Adds a new Folder to a Folders collection]
  8. Add(|folderName)
  9. [BuildPath | Appends a name to an existing path]
  10. BuildPath(|path, name)
  11. [Clear | Clears all property settings of the Err object]
  12. Clear|
  13. [Close | Closes an open TextStream file]
  14. Close|
  15. [Copy | Copies a specified file or folder from one location to another]
  16. Copy destination|[, overwrite]
  17. [CopyFile | Copies one or more files from one location to another]
  18. CopyFile source, destination|[, overwrite]
  19. [CopyFolder | Recursively copies a folder from one location to another]
  20. CopyFolder source, destination|[, overwrite]
  21. [CreateFolder | Creates a folder]
  22. CreateFolder(|foldername)
  23. [CreateTextFile | Creates a specified file name and returns a TextStream object that can be used to read from or write to the file]
  24. CreateTextFile(|filename[, overwrite[, unicode]])
  25. [Delete | Deletes a specified file or folder]
  26. Delete |force
  27. [DeleteFile | Deletes a specified file]
  28. DeleteFile filespec|[, force]
  29. [DeleteFolder | Deletes a specified folder and its contents]
  30. DeleteFolder folderspec|[, force]
  31. [DriveExists | Returns True if the specified drive exists; False if it does not]
  32. DriveExists(|drivespec)
  33. [Execute | Executes a regular expression search against a specified string]
  34. Execute(|string)
  35. [Exists | Returns True if a specified key exists in the Dictionary object, False if it does not]
  36. Exists(|key)
  37. [FileExists | Returns True if a specified file exists; False if it does not]
  38. FileExists(|filespec)
  39. [FolderExists | Returns True if a specified folder exists; False if it does not]
  40. FolderExists(|folderspec)
  41. [GetAbsolutePathName | Returns a complete and unambiguous path from a provided path specification]
  42. GetAbsolutePathName(|pathspec)
  43. [GetBaseName | Returns a string containing the base name of the file (less any file extension), or folder in a provided path specification]
  44. GetBaseName(|path)
  45. [GetDrive | Returns a Drive object corresponding to the drive in a specified path]
  46. GetDrive |drivespec
  47. [GetDriveName | Returns a string containing the name of the drive for a specified path]
  48. GetDriveName(|path)
  49. [GetExtensionName | Returns a string containing the extension name for the last component in a path]
  50. GetExtensionName(|path)
  51. [GetFile | Returns a File object corresponding to the file in a specified path]
  52. GetFile(|filespec)
  53. [GetFileName | Returns the last file name or folder of a specified path that is not part of the drive specification]
  54. GetFileName(|pathspec)
  55. [GetFolder | Returns a Folder object corresponding to the folder in a specified path]
  56. GetFolder(|folderspec)
  57. [GetParentFolderName | Returns a string containing the name of the parent folder of the last file or folder in a specified path]
  58. GetParentFolderName(|path)
  59. [GetSpecialFolder | Returns the special folder specified]
  60. GetSpecialFolder(|folderspec)
  61. [GetTempName | Returns a randomly generated temporary file or folder name that is useful for performing operations that require a temporary file or folder]
  62. GetTempName|
  63. [Items | Returns an array containing all the items in a Dictionary object]
  64. Items|
  65. [Keys | Returns an array containing all existing keys in a Dictionary object]
  66. Keys|
  67. [Move | Moves a specified file or folder from one location to another]
  68. Move |destination
  69. [MoveFile | Moves one or more files from one location to another]
  70. MoveFile |source, destination
  71. [MoveFolder | Moves one or more folders from one location to another]
  72. MoveFolder |source, destination
  73. [OpenAsTextStream | Opens a specified file and returns a TextStream object that can be used to read from, write to, or append to the file]
  74. OpenAsTextStream(|[iomode, [format]])
  75. [OpenTextFile | Opens a specified file and returns a TextStream object that can be used to read from, write to, or append to the file]
  76. OpenTextFile(|filename[, iomode[, create[, format]]])
  77. [Raise | Generates a run-time error]
  78. Raise(|number, source, description, helpfile, helpcontext)
  79. [Read | Reads a specified number of characters from a TextStream file and returns the resulting string]
  80. Read(|characters)
  81. [ReadAll | Reads an entire TextStream file and returns the resulting string]
  82. ReadAll|
  83. [ReadLine | Reads an entire line (up to, but not including, the newline character) from a TextStream file and returns the resulting string]
  84. ReadLine|
  85. [Remove | Removes a key, item pair from a Dictionary object]
  86. Remove(|key)
  87. [RemoveAll | The RemoveAll method removes all key, item pairs from a Dictionary object]
  88. RemoveAll|
  89. [Replace | Replaces text found in a regular expression search]
  90. Replace(|string1, string2)
  91. [Skip | Skips a specified number of characters when reading a TextStream file]
  92. Skip(|characters)
  93. [SkipLine | Skips the next line when reading a TextStream file]
  94. SkipLine|
  95. [Test | Executes a regular expression search against a specified string and returns a Boolean value that indicates if a pattern match was found]
  96. Test(|string)
  97. [Write | Writes a specified string to a TextStream file]
  98. Write(|string)
  99. [WriteBlankLines | Writes a specified number of newline characters to a TextStream file]
  100. WriteBlankLines(|lines)
  101. [WriteLine | Writes a specified string and newline character to a TextStream file]
  102. WriteLine(|[string])
  103. [AtEndOfLine | Returns True if the file pointer immediately precedes the end-of-line marker in a TextStream file; False if it is not. Read-only]
  104. AtEndOfLine|
  105. [AtEndOfStream | Returns True if the file pointer is at the end of a TextStream file; False if it is not. Read-only]
  106. AtEndOfStream|
  107. [Attributes | Sets or returns the attributes of files or folders. Read/write or read-only, depending on the attribute]
  108. Attributes |[= newattributes]
  109. [AvailableSpace | Returns the amount of space available to a user on the specified drive or network share]
  110. AvailableSpace|
  111. [Column | Read-only property that returns the column number of the current character position in a TextStream file]
  112. Column|
  113. [CompareMode | Sets and returns the comparison mode for comparing string keys in a Dictionary object]
  114. CompareMode|[ = compare]
  115. [Count | Returns the number of items in a collection or Dictionary object. Read-only]
  116. Count|
  117. [DateCreated | Returns the date and time that the specified file or folder was created. Read-only]
  118. DateCreated|
  119. [DateLastAccessed | Returns the date and time that the specified file or folder was last accessed. Read-only]
  120. DateLastAccessed|
  121. [DateLastModified | Returns the date and time that the specified file or folder was last modified. Read-only]
  122. DateLastModified|
  123. [Description | Returns or sets a descriptive string associated with an error]
  124. Description |[= stringexpression]
  125. [Drive | Returns the drive letter of the drive on which the specified file or folder resides. Read-only]
  126. Drive|
  127. [DriveLetter | Returns the drive letter of a physical local drive or a network share. Read-only]
  128. DriveLetter|
  129. [Drives | Returns a Drives collection consisting of all Drive objects available on the local machine]
  130. Drives|
  131. [DriveType | Returns a value indicating the type of a specified drive]
  132. DriveType|
  133. [Files | Returns a Files collection consisting of all File objects contained in the specified folder, including those with hidden and system file attributes set]
  134. Files|
  135. [FileSystem | Returns the type of file system in use for the specified drive]
  136. FileSystem|
  137. [FirstIndex | Returns the position in a search string where a match occurs]
  138. FirstIndex|
  139. [FreeSpace | Returns the amount of free space available to a user on the specified drive or network share. Read-only]
  140. FreeSpace|
  141. [Global | Sets or returns a Boolean value that indicates if a pattern should match all occurrences in an entire search string or just the first one]
  142. Global |[= True | False ]
  143. [HelpContext | Sets or returns a context ID for a topic in a Help File]
  144. HelpContext |[= contextID]
  145. [HelpFile | Sets or returns a fully qualified path to a Help File]
  146. HelpFile |[= contextID]
  147. [IgnoreCase | Sets or returns a Boolean value that indicates if a pattern search is case-sensitive or not]
  148. IgnoreCase |[= True | False ]
  149. [IsReady | Returns True if the specified drive is ready; False if it is not]
  150. IsReady|
  151. [IsRootFolder | Returns True if the specified folder is the root folder; False if it is not]
  152. IsRootFolder|
  153. [Item | Sets or returns an item for a specified key in a Dictionary object. For collections, returns an item based on the specified key. Read/write]
  154. Item(|key) [= newitem]
  155. [Key | Sets a key in a Dictionary object]
  156. Key(|key) = newkey
  157. [Length | Returns the length of a match found in a search string]
  158. Length|
  159. [Line | Read-only property that returns the current line number in a TextStream file]
  160. Line|
  161. [Name | Sets or returns the name of a specified file or folder. Read/write]
  162. Name |[= newname]
  163. [Number | Returns or sets a numeric value specifying an error. Number is the Err object's default property]
  164. Number |[= errornumber]
  165. [ParentFolder | Returns the folder object for the parent of the specified file or folder. Read-only]
  166. ParentFolder|
  167. [Path | Returns the path for a specified file, folder, or drive]
  168. Path|
  169. [Pattern | Sets or returns the regular expression pattern being searched for]
  170. Pattern |[= "searchstring"]
  171. [RootFolder | Returns a Folder object representing the root folder of a specified drive. Read-only]
  172. RootFolder|
  173. [SerialNumber | Returns the decimal serial number used to uniquely identify a disk volume]
  174. SerialNumber|
  175. [ShareName | Returns the network share name for a specified drive]
  176. ShareName|
  177. [ShortName | Returns the short name used by programs that require the earlier 8.3 naming convention]
  178. ShortName|
  179. [ShortPath | Returns the short path used by programs that require the earlier 8.3 file naming convention]
  180. ShortPath|
  181. [Size | For files, returns the size, in bytes, of the specified file. For folders, returns the size, in bytes, of all files and subfolders contained in the folder]
  182. Size|
  183. [Source | Returns or sets the name of the object or application that originally generated the error]
  184. Source |[= stringexpression]
  185. [SubFolders | Returns a Folders collection consisting of all folders contained in a specified folder, including those with Hidden and System file attributes set]
  186. SubFolders|
  187. [TotalSize | Returns the total space, in bytes, of a drive or network share]
  188. TotalSize|
  189. [Type | Returns information about the type of a file or folder. For example, for files ending in .TXT, "Text Document" is returned]
  190. Type|
  191. [Value | Returns the value or text of a match found in a search string]
  192. Value|
  193. [VolumeName | Sets or returns the volume name of the specified drive. Read/write]
  194. VolumeName |[= newname]